home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1993 / MacHack 1993.toast / MacHack™ 1987-1992 / MacHack™ '90 / Utilities ƒ / MPW Tools ƒ / Simula4.07 / Simula 4.07ƒ / SExamples / makefile < prev    next >
Encoding:
Makefile  |  1989-04-30  |  647 b   |  32 lines  |  [TEXT/MPS ]

  1. # =====================================
  2. #
  3. # Makefile to compile and link the demo
  4. # programs that comes with the LUND
  5. # Simula system
  6. # ======================================
  7.  
  8. All    ƒ Sample CopyFile Processes
  9.  
  10. Sample    ƒƒ Sample.r
  11.     Rez sample.r -o Sample -append    
  12.     Setfile -a B Sample -c LUND -t APPL   # set the bundle bit
  13.  
  14. Sample    ƒƒ Sample.sim.o 
  15.     simld Sample -toolbox -APPL
  16.     
  17. Sample.sim.o    ƒ    Sample.sim 
  18.     simcomp    Sample
  19.  
  20.  
  21. CopyFile    ƒ CopyFile.sim.o 
  22.     simld CopyFile -toolbox -APPL
  23.     
  24. CopyFile.sim.o    ƒ    CopyFile.sim 
  25.     simcomp    CopyFile
  26.  
  27.  
  28. Processes    ƒ Processes.sim.o 
  29.     simld Processes -toolbox -APPL
  30.     
  31. Processes.sim.o    ƒ    Processes.sim 
  32.     simcomp    Processes